From 8c60cd584362967fae4f5abea14fbdc9fd3b5100 Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 28 Oct 2019 21:13:46 +0100 Subject: [PATCH] Set MCR migration stage to SCHEMA_COMPAT_NEW. This disables writing to the old schema in DefaultSettings.php. Bug: T231673 Change-Id: I799bfb76c10fd0c0dc791e7380fce0159d81c2d3 (cherry picked from commit 1a917bab4cfa3a957e4cda1959050a2c2058ee4c) --- includes/DefaultSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index b514504b9a..31308a3602 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -9000,7 +9000,7 @@ $wgInterwikiPrefixDisplayTypes = []; * @since 1.32 * @var int An appropriate combination of SCHEMA_COMPAT_XXX flags. */ -$wgMultiContentRevisionSchemaMigrationStage = SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW; +$wgMultiContentRevisionSchemaMigrationStage = SCHEMA_COMPAT_NEW; /** * The schema to use per default when generating XML dumps. This allows sites to control -- 2.20.1